Socket
Socket
Sign inDemoInstall

ansi-colors

Package Overview
Dependencies
1
Maintainers
2
Versions
29
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ansi-colors

Collection of ansi colors and styles.


Version published
Maintainers
2
Install size
27.9 kB
Created

Package description

What is ansi-colors?

The ansi-colors npm package is a utility for styling strings in the terminal with ANSI escape codes. It allows developers to add color and style to text output in command-line applications.

What are ansi-colors's main functionalities?

Text Colors

Apply text color to strings. The example shows how to make text red.

"const colors = require('ansi-colors');\nconsole.log(colors.red('This is red text'));"

Background Colors

Apply background color to strings. The example shows how to give text a red background.

"const colors = require('ansi-colors');\nconsole.log(colors.bgRed('This has a red background'));"

Text Styles

Apply text styles like bold, italic, underline, etc. The example shows how to make text bold.

"const colors = require('ansi-colors');\nconsole.log(colors.bold('This is bold text'));"

Chaining Styles

Chain multiple styles together. The example shows text that is blue, bold, and underlined.

"const colors = require('ansi-colors');\nconsole.log(colors.blue.bold.underline('This is blue, bold, and underlined'));"

Custom Themes

Create custom themes by combining styles. The example defines a custom theme with styles for error and warning messages.

"const colors = require('ansi-colors');\nconst customTheme = {\n  error: colors.red.bold,\n  warning: colors.yellow.italic\n};\nconsole.log(customTheme.error('Error message'));\nconsole.log(customTheme.warning('Warning message'));"

Other packages similar to ansi-colors

Readme

Source

ansi-colors NPM version NPM monthly downloads NPM total downloads Linux Build Status Windows Build Status

Collection of ansi colors and styles.

Install

Install with npm:

$ npm install --save ansi-colors

Usage

This module exports an object of functions. Each function wraps a string with the ansi codes used to display the string with that color (or style). Use the wrapped string with console.log:

var colors = require('ansi-colors');
console.log(colors.bold(colors.cyan('[info]')), colors.cyan('This is some information'));
console.log(colors.bold(colors.yellow('[warning]')), colors.yellow('This is a warning'));
console.error(colors.bold(colors.red('[ERROR]')), colors.red('Danger! There was an error!'));

image

Example

See the example for more colors and styles.

About

Contributing

Pull requests and stars are always welcome. For bugs and feature requests, please create an issue.

Contributors

CommitsContributor
10doowb
3jonschlinkert

Building docs

(This project's readme.md is generated by verb, please don't edit the readme directly. Any changes to the readme must be made in the .verb.md readme template.)

To generate the readme, run the following command:

$ npm install -g verbose/verb#dev verb-generate-readme && verb

Running tests

Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:

$ npm install && npm test

Author

Brian Woodward

License

Copyright © 2018, Brian Woodward. Released under the MIT License.


This file was generated by verb-generate-readme, v0.6.0, on January 12, 2018.

Keywords

FAQs

Last updated on 18 Feb 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc